home *** CD-ROM | disk | other *** search
/ SGI Hot Mix 8 / Hot Mix 8.iso / .all / bin / Start_Intro2 (.txt) < prev    next >
Text File  |  1994-06-22  |  199b  |  16 lines

  1. #!/bin/csh
  2. #
  3. #
  4. @ STOP_TIME = $1
  5. @ ipasteID = $2
  6.  
  7. echo STOP_TIME=$STOP_TIME  ipasteID=$ipasteID
  8.  
  9. LOOP:
  10. while (`date | awk '{print $4}' | sed s/://g` < $STOP_TIME) 
  11.     goto LOOP
  12. end 
  13.  
  14. kill -9 $ipasteID
  15.  
  16.